home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / regist10 / readme.txt next >
Encoding:
Text File  |  1999-07-16  |  860 b   |  33 lines

  1. Written By:  Chris Roebuck
  2. Date:  7/16/99
  3. Email:  csroebuck1@yahoo.com
  4.  
  5. The Regist10.Dll will allow you to register and unregister OLE DLL's and OCX's.  To use
  6. this dll, you need to copy it into your Windows\System directory.  This dll will work 
  7. with Win95/98 or WinNT.  
  8.  
  9. The declare statement is as follows:
  10.  
  11. Declare Function RegisterDLL Lib "Regist10.dll" Alias "REGISTERDLL" _
  12. (ByVal DllPath As String, bRegister As Boolean) As Boolean
  13.  
  14. Examples
  15.  
  16.  
  17. Registering:
  18.  
  19. Dim bRet AS boolean
  20. bRet=RegisterDLL("C:\Windows\System\myoledll.dll", True)
  21.  
  22.  
  23. UnRegistering:
  24.  
  25. Dim bRet AS boolean
  26. bRet=RegisterDLL("C:\Windows\System\myoledll.dll", False)
  27.  
  28.  
  29. This DLL is Freeware and is freely distributable provided that this readme.txt file is not
  30. altered in any way.  If you have any questions, contact me at the email address given above.
  31.  
  32.  
  33.